home *** CD-ROM | disk | FTP | other *** search
/ Technotools / Technotools (Chestnut CD-ROM)(1993).ISO / lang_c / bisonpcb / reader.c < prev    next >
Text File  |  1987-02-13  |  36KB  |  1,667 lines

  1. /* Input parser for bison
  2.    Copyright (C) 1984, 1986 Bob Corbett and Free Software Foundation, Inc.
  3.   
  4. BISON is distributed in the hope that it will be useful, but WITHOUT ANY
  5. WARRANTY.  No author or distributor accepts responsibility to anyone
  6. for the consequences of using it or for whether it serves any
  7. particular purpose or works at all, unless he says so in writing.
  8. Refer to the BISON General Public License for full details.
  9.   
  10. Everyone is granted permission to copy, modify and redistribute BISON,
  11. but only under the conditions described in the BISON General Public
  12. License.  A copy of this license is supposed to have been given to you
  13. along with BISON so you can know your rights and responsibilities.  It
  14. should be in a file named COPYING.  Among other things, the copyright
  15. notice and this notice must be preserved on all copies.
  16.   
  17.  In other words, you are welcome to use, share and improve this program.
  18.  You are forbidden to forbid anyone else to use, share and improve
  19.  what you give them.   Help stamp out software-hoarding!  */
  20.  
  21. /* read in the grammar specification and record it in the format described in gram.h.
  22.   All guards are copied into the fguard file and all actions into faction,
  23.   in each case forming the body of a C function (yyguard or yyaction)
  24.   which contains a switch statement to decide which guard or action to execute.
  25.   
  26. The entry point is reader().  */
  27.  
  28. /*
  29.  * Port to PC by Whit Gregg
  30.  *               Nourse, Gregg & Browne, Inc.
  31.  *         1 Horizon Road
  32.  *         Fort Lee, NJ  07024
  33.  */
  34.  
  35.  
  36. #include <stdio.h>
  37. #include <ctype.h>
  38. #include <string.h>
  39. #include <malloc.h>
  40. #include <stdlib.h>
  41. #include "files.h"
  42. #include "new.h"
  43. #include "symtab.h"
  44. #include "lex.h"
  45. #include "gram.h"
  46. #include "func.h"
  47.  
  48.  
  49. #define    LTYPESTR    "\n#ifndef YYLTYPE\ntypedef\n  struct yyltype\n\
  50.     {\n      int timestamp;\n      int first_line;\n      int first_column;\n\
  51.       int last_line;\n      int last_column;\n      char *text;\n   }\n\
  52.   yyltype;\n\n#define YYLTYPE yyltype\n#endif\n\n"
  53.  
  54.  
  55.  
  56. /* Number of slots allocated (but not necessarily used yet) in `rline'  */
  57.     int rline_allocated;
  58.  
  59. extern int definesflag;
  60. extern bucket *symval;
  61. extern int numval;
  62.  
  63. typedef
  64.     struct symbol_list {
  65.     struct symbol_list *next;
  66.     bucket *sym;
  67.     bucket *ruleprec;
  68.     }
  69.  
  70.  symbol_list;
  71.  
  72.  
  73.  
  74. int lineno;
  75. bucket *symval;
  76. symbol_list *grammar;
  77. int start_flag;
  78. bucket *startval;
  79. char **tags;
  80.  
  81. static int typed;        /* nonzero if %union has been seen.  */
  82.  
  83. static int lastprec;        /* incremented for each %left, %right or
  84.                  * %nonassoc seen */
  85.  
  86. static int gensym_count;    /* incremented for each generated symbol */
  87.  
  88. static bucket *errtoken;
  89.  
  90. static FILE *fattrs1;
  91.  
  92. void 
  93. reader()
  94. {                /* WG */
  95.  
  96.     start_flag = 0;
  97.     startval = NULL;    /* start symbol not specified yet. */
  98.  
  99.     translations = 0;    /* initially assume token number translation
  100.                  * not needed.  */
  101.  
  102.     nsyms = 1;
  103.     nvars = 0;
  104.     nrules = 0;
  105.     nitems = 0;
  106.     rline_allocated = 10;
  107.     rline = NEW2(rline_allocated, short);
  108.  
  109.     typed = 0;
  110.     lastprec = 0;
  111.  
  112.     gensym_count = 0;
  113.  
  114.     semantic_parser = 0;
  115.     pure_parser = 0;
  116.  
  117.     grammar = NULL;
  118.  
  119.     /*
  120.      * fattrs1 = ftable;  JF use fattrs instead  /* Unless/until fattrs
  121.      * is opened, use ftable instead.  
  122.      */
  123.     fattrs1 = fattrs;
  124.  
  125.     init_lex();
  126.     lineno = 1;
  127.  
  128.     /* initialize the symbol table.  */
  129.     tabinit();
  130.     /* construct the error token */
  131.     errtoken = getsym("error");
  132.     errtoken->class = STOKEN;
  133.     /* construct a token that represents all undefined literal tokens. */
  134.     /* it is always token number 2.  */
  135.     getsym("$illegal.")->class = STOKEN;
  136.     /*
  137.      * Read the declaration section.  Copy %{ ... %} groups to ftable or
  138.      * fattrs file. Also notice any %token, %left, etc. found there.  
  139.      */
  140.     fprintf(ftable, "\n/*  A Bison parser, made from %s  */\n\n", infile);
  141.     read_declarations();
  142.     /* output the definition of YYLTYPE into the fattrs or ftable file.  */
  143.     output_ltype();
  144.     /* start writing the guard and action files, if they are needed.  */
  145.     output_headers();
  146.     /*
  147.      * read in the grammar, build grammar in list form.  write out guards
  148.      * and actions.  
  149.      */
  150.     readgram();
  151.     /* write closing delimiters for actions and guards.  */
  152.     output_trailers();
  153.     /*
  154.      * assign the symbols their symbol numbers. Write #defines for the
  155.      * token symbols into fdefines if requested.  
  156.      */
  157.     packsymbols();
  158.     /* convert the grammar into the format described in gram.h.  */
  159.     packgram();
  160.     /*
  161.      * free the symbol table data structure since symbols are now all
  162.      * referred to by symbol number.  
  163.      */
  164.     free_symtab();
  165.     }
  166.  
  167.  
  168.  
  169. /* read from finput until %% is seen.  Discard the %%.
  170. Handle any % declarations,
  171. and copy the contents of any %{ ... %} groups to ftable or fattrs.  */
  172.  
  173. void 
  174. read_declarations()
  175. {                /* WG */
  176.     register int c;
  177.     register int tok;
  178.  
  179.     for (;;) {
  180.         c = skip_white_space();
  181.  
  182.         if (c == '%') {
  183.             tok = parse_percent_token();
  184.  
  185.             switch (tok) {
  186.                 case TWO_PERCENTS:
  187.                 return;
  188.  
  189.                 case PERCENT_LEFT_CURLY:
  190.                 copy_definition();
  191.                 break;
  192.  
  193.                 case TOKEN:
  194.                 parse_token_decl(STOKEN, SNTERM);
  195.                 break;
  196.  
  197.                 case NTERM:
  198.                 parse_token_decl(SNTERM, STOKEN);
  199.                 break;
  200.  
  201.                 case TYPE:
  202.                 parse_type_decl();
  203.                 break;
  204.  
  205.                 case START:
  206.                 parse_start_decl();
  207.                 break;
  208.  
  209.                 case UNION:
  210.                 parse_union_decl();
  211.                 break;
  212.  
  213.                 case LEFT:
  214.                 parse_assoc_decl(LEFT_ASSOC);
  215.                 break;
  216.  
  217.                 case RIGHT:
  218.                 parse_assoc_decl(RIGHT_ASSOC);
  219.                 break;
  220.  
  221.                 case NONASSOC:
  222.                 parse_assoc_decl(NON_ASSOC);
  223.                 break;
  224.  
  225.                 case SEMANTIC_PARSER:
  226.                 semantic_parser = 1;
  227.                 open_extra_files();
  228.                 fattrs1 = fattrs;
  229.                 break;
  230.  
  231.                 case PURE_PARSER:
  232.                 pure_parser = 1;
  233.                 break;
  234.  
  235.                 default:
  236.                 fatal("junk after % in definition section");
  237.                 }
  238.             }
  239.         else if (c == EOF)
  240.             fatal("no input grammar");
  241.         else        /* JF changed msg */
  242.             fatals("Unrecognized char '%c' in declaration section", c);
  243.  
  244.         }
  245.     }
  246.  
  247.  
  248. /* copy the contents of a %{ ... %} into the definitions file.
  249. The %{ has already been read.  Return after reading the %}.  */
  250. void 
  251. copy_definition()
  252. {                /* WG */
  253.     register int c;
  254.     register int match;
  255.     register int ended;
  256.     register int after_percent;    /* -1 while reading a character if
  257.                      * prev char was % */
  258.  
  259.     fprintf(fattrs1, "#line %d \"%s\"\n", lineno, infile);
  260.  
  261.     after_percent = 0;
  262.  
  263.     c = getc(finput);
  264.  
  265.     for (;;) {
  266.         switch (c) {
  267.             case '\n':
  268.             putc((char) c, fattrs1);    /* WG */
  269.             lineno++;
  270.             break;
  271.  
  272.             case '%':
  273.             after_percent = -1;
  274.             break;
  275.  
  276.             case '\'':
  277.             case '"':
  278.             match = c;
  279.             putc((char) c, fattrs1);    /* WG */
  280.             c = getc(finput);
  281.  
  282.             while (c != match) {
  283.                 if (c == EOF || c == '\n')
  284.                     fatal("unterminated string");
  285.  
  286.                 putc((char) c, fattrs1);    /* WG */
  287.  
  288.                 if (c == '\\') {
  289.                     c = getc(finput);
  290.                     if (c == EOF || c == '\n')
  291.                         fatal("unterminated string");
  292.                     putc((char) c, fattrs1);    /* WG */
  293.                     if (c == '\n')
  294.                         lineno++;
  295.                     }
  296.  
  297.                 c = getc(finput);
  298.                 }
  299.  
  300.             putc((char) c, fattrs1);    /* WG */
  301.             break;
  302.  
  303.             case '/':
  304.             putc((char) c, fattrs1);    /* WG */
  305.             c = getc(finput);
  306.             if (c != '*')
  307.                 continue;
  308.  
  309.             putc((char) c, fattrs1);    /* WG */
  310.             c = getc(finput);
  311.  
  312.             ended = 0;
  313.             while (!ended) {
  314.                 if (c == '*') {
  315.                     while (c == '*') {
  316.                         putc((char) c, fattrs1);    /* WG */
  317.                         c = getc(finput);
  318.                         }
  319.  
  320.                     if (c == '/') {
  321.                         putc((char) c, fattrs1);    /* WG */
  322.                         ended = 1;
  323.                         }
  324.                     }
  325.                 else if (c == '\n') {
  326.                     lineno++;
  327.                     putc((char) c, fattrs1);    /* WG */
  328.                     c = getc(finput);
  329.                     }
  330.                 else if (c == EOF)
  331.                     fatal("unterminated comment in %{ definition");
  332.                 else {
  333.                     putc((char) c, fattrs1);    /* WG */
  334.                     c = getc(finput);
  335.                     }
  336.                 }
  337.  
  338.             break;
  339.  
  340.             case EOF:
  341.             fatal("unterminated %{ definition");
  342.  
  343.             default:
  344.             putc((char) c, fattrs1);    /* WG */
  345.             }
  346.  
  347.         c = getc(finput);
  348.  
  349.         if (after_percent) {
  350.             if (c == '}')
  351.                 return;
  352.             putc('%', fattrs1);
  353.             }
  354.         after_percent = 0;
  355.  
  356.         }
  357.  
  358.     }
  359.  
  360.  
  361.  
  362. /* parse what comes after %token or %nterm.
  363. For %token, what_is is STOKEN and what_is_not is SNTERM.
  364. For %nterm, the arguments are reversed.  */
  365.  
  366. void 
  367. parse_token_decl(what_is, what_is_not)    /* WG */
  368.     int what_is, what_is_not;
  369. {
  370. /*   register int start_lineno; JF */
  371.     register int token = 0;
  372.     register int prev;
  373.     register char *typename = 0;
  374.     int k;
  375.     extern char token_buffer[];
  376.  
  377. /*   start_lineno = lineno; JF */
  378.  
  379.     for (;;) {
  380.         if (ungetc(skip_white_space(), finput) == '%')
  381.             return;
  382.  
  383. /*      if (lineno != start_lineno)
  384.     return; JF */
  385.  
  386.         /*
  387.          * we have not passed a newline, so the token now starting is
  388.          * in this declaration 
  389.          */
  390.         prev = token;
  391.  
  392.         if ((token = lex()) == TYPENAME) {
  393.             k = strlen(token_buffer);
  394.             if (typename)
  395.                 free(typename);
  396.             typename = NEW2(k + 1, char);
  397.             strcpy(typename, token_buffer);
  398.             }
  399.         else if (token == IDENTIFIER) {
  400.             if (symval->class == (char) what_is_not)    /* WG */
  401.                 fatals("symbol %s redefined", symval->tag);
  402.             symval->class = (char) what_is;    /* WG */
  403.             if (what_is == SNTERM)
  404.                 symval->value = nvars++;
  405.  
  406.             if (typename) {
  407.                 if (symval->type_name == NULL)
  408.                     symval->type_name = typename;
  409.                 else
  410.                     fatals("type redeclaration for %s", symval->tag);
  411.                 }
  412.             }
  413.         else if (prev == IDENTIFIER && token == NUMBER) {
  414.             symval->user_token_number = numval;
  415.             translations = 1;
  416.             }
  417.         else
  418.             fatal("illegal text in %token or %nterm declaration");
  419.         }
  420.  
  421.     }
  422.  
  423.  
  424.  
  425. /* parse what comes after %start */
  426.  
  427. void 
  428. parse_start_decl()
  429. {                /* WG */
  430.     if (start_flag)
  431.         fatal("multiple start declarations");
  432.     start_flag = 1;
  433.     if (lex() != IDENTIFIER)
  434.         fatal("illegal start declaration");
  435.     startval = symval;
  436.     }
  437.  
  438.  
  439.  
  440. /* read in a %type declaration and record its information for get_type_name to access */
  441.  
  442. void 
  443. parse_type_decl()
  444. {                /* WG */
  445.     register int k;
  446.     register char *name;
  447.  
  448. /*   register int start_lineno; JF */
  449.  
  450.     extern char token_buffer[];
  451.  
  452.     if (lex() != TYPENAME)
  453.         fatal("ill-formed %type declaration");
  454.  
  455.     k = strlen(token_buffer);
  456.     name = NEW2(k + 1, char);
  457.     strcpy(name, token_buffer);
  458.  
  459. /*   start_lineno = lineno; */
  460.  
  461.     for (;;) {
  462.         register int t;
  463.  
  464.         if (ungetc(skip_white_space(), finput) == '%')
  465.             return;
  466.  
  467. /*       if (lineno != start_lineno)
  468.     return; JF */
  469.  
  470.         /*
  471.          * we have not passed a newline, so the token now starting is
  472.          * in this declaration 
  473.          */
  474.  
  475.         t = lex();
  476.  
  477.         switch (t) {
  478.  
  479.             case COMMA:
  480.             break;
  481.  
  482.             case IDENTIFIER:
  483.             if (symval->type_name == NULL)
  484.                 symval->type_name = name;
  485.             else
  486.                 fatals("type redeclaration for %s", symval->tag);
  487.  
  488.             break;
  489.  
  490.             default:
  491.             fatal("illegal %type declaration");
  492.             }
  493.         }
  494.     }
  495.  
  496.  
  497.  
  498. /* read in a %left, %right or %nonassoc declaration and record its information.  */
  499. /* assoc is either LEFT_ASSOC, RIGHT_ASSOC or NON_ASSOC.  */
  500.  
  501. void 
  502. parse_assoc_decl(assoc)        /* WG */
  503.     int assoc;
  504. {
  505.     register int k;
  506.     register char *name = NULL;
  507.  
  508. /*  register int start_lineno; JF */
  509.     register int prev = 0;    /* JF added = 0 to keep lint happy */
  510.  
  511.     extern char token_buffer[];
  512.  
  513.     lastprec++;        /* assign a new precedence level.  */
  514.  
  515. /*   start_lineno = lineno; */
  516.  
  517.     for (;;) {
  518.         register int t;
  519.  
  520.         if (ungetc(skip_white_space(), finput) == '%')
  521.             return;
  522.  
  523.         /*
  524.          * if (lineno != start_lineno) return; JF 
  525.          */
  526.  
  527.         /*
  528.          * we have not passed a newline, so the token now starting is
  529.          * in this declaration 
  530.          */
  531.  
  532.         t = lex();
  533.  
  534.         switch (t) {
  535.  
  536.             case TYPENAME:
  537.             k = strlen(token_buffer);
  538.             name = NEW2(k + 1, char);
  539.             strcpy(name, token_buffer);
  540.             break;
  541.  
  542.             case COMMA:
  543.             break;
  544.  
  545.             case IDENTIFIER:
  546.             symval->prec = lastprec;
  547.             symval->assoc = assoc;
  548.             if (symval->class == SNTERM)
  549.                 fatals("symbol %s redefined", symval->tag);
  550.             symval->class = STOKEN;
  551.             if (name) {    /* record the type, if one is
  552.                      * specified */
  553.                 if (symval->type_name == NULL)
  554.                     symval->type_name = name;
  555.                 else
  556.                     fatals("type redeclaration for %s", symval->tag);
  557.                 }
  558.             break;
  559.  
  560.             case NUMBER:
  561.             if (prev == IDENTIFIER) {
  562.                 symval->user_token_number = numval;
  563.                 translations = 1;
  564.                 }
  565.             else
  566.                 fatal("illegal text in association declaration");
  567.             break;
  568.  
  569.             case SEMICOLON:
  570.             return;
  571.  
  572.             default:
  573.             fatal("malformatted association declaration");
  574.             }
  575.  
  576.         prev = t;
  577.  
  578.         }
  579.     }
  580.  
  581.  
  582.  
  583. /* copy the union declaration into ftable or fattrs, where it is made into the
  584. definition of YYSTYPE, the type of elements of the parser value stack.  */
  585.  
  586. void 
  587. parse_union_decl()
  588. {                /* WG */
  589.     register int c;
  590.     register int count;
  591.     register int in_comment;
  592.  
  593.     if (typed)
  594.         fatal("multiple %union declarations");
  595.  
  596.     typed = 1;
  597.  
  598.     fprintf(fattrs1, "\n#line %d \"%s\"\n", lineno, infile);
  599.     fprintf(fattrs1, "typedef union");
  600.  
  601.     count = 0;
  602.     in_comment = 0;
  603.  
  604.     c = getc(finput);
  605.  
  606.     while (c != EOF) {
  607.         putc((char) c, fattrs1);    /* WG */
  608.  
  609.         switch (c) {
  610.             case '\n':
  611.             lineno++;
  612.             break;
  613.  
  614.             case '/':
  615.             c = getc(finput);
  616.             if (c != '*')
  617.                 ungetc(c, finput);
  618.             else {
  619.                 putc('*', fattrs1);
  620.                 c = getc(finput);
  621.                 in_comment = 1;
  622.                 while (in_comment) {
  623.                     if (c == EOF)
  624.                         fatal("unterminated comment");
  625.  
  626.                     putc((char) c, fattrs1);    /* WG */
  627.                     if (c == '*') {
  628.                         c = getc(finput);
  629.                         if (c == '/') {
  630.                             putc('/', fattrs1);
  631.                             in_comment = 0;
  632.                             }
  633.                         }
  634.                     else
  635.                         c = getc(finput);
  636.                     }
  637.                 }
  638.             break;
  639.  
  640.  
  641.             case '{':
  642.             count++;
  643.             break;
  644.  
  645.             case '}':
  646.             count--;
  647.             if (count == 0) {
  648.                 fprintf(fattrs1, " YYSTYPE;\n");
  649.                 /* JF don't choke on trailing semi */
  650.                 c = skip_white_space();
  651.                 if (c != ';')
  652.                     ungetc(c, finput);
  653.                 return;
  654.                 }
  655.             }
  656.  
  657.         c = getc(finput);
  658.         }
  659.     }
  660.  
  661. /* that's all of parsing the declaration section */
  662.  
  663.  
  664. void 
  665. output_ltype()
  666. {                /* WG */
  667.     fprintf(fattrs1, LTYPESTR);    /* JF added YYABORT() */
  668.     fprintf(fattrs1, "#define\tYYACCEPT\treturn(0)\n");
  669.     fprintf(fattrs1, "#define\tYYABORT\treturn(1)\n");
  670.     fprintf(fattrs1, "#define\tYYERROR\treturn(1)\n");
  671.     }
  672.  
  673.  
  674.  
  675. /* Get the data type (alternative in the union) of the value for symbol n in rule rule.  */
  676.  
  677. char *
  678. get_type_name(n, rule)
  679.     int n;
  680.     symbol_list *rule;
  681. {
  682.     static char *msg = "illegal $ value";
  683.  
  684.     register int i;
  685.     register symbol_list *rp;
  686.  
  687.     if (n < 0)
  688.         fatal(msg);
  689.  
  690.     rp = rule;
  691.     i = 0;
  692.  
  693.     while (i < n) {
  694.         rp = rp->next;
  695.         if (rp == NULL || rp->sym == NULL)
  696.             fatal(msg);
  697.         i++;
  698.         }
  699.  
  700.     return (rp->sym->type_name);
  701.     }
  702.  
  703.  
  704.  
  705. /* after %guard is seen in the input file,
  706. copy the actual guard into the guards file.
  707. If the guard is followed by an action, copy that into the actions file.
  708. stack_offset is the number of values in the current rule so far,
  709. which says where to find $0 with respect to the top of the stack,
  710. for the simple parser in which the stack is not popped until after the guard is run.  */
  711.  
  712. void 
  713. copy_guard(rule, stack_offset)    /* WG */
  714.     symbol_list *rule;
  715.     int stack_offset;
  716. {
  717.     register int c;
  718.     register int n;
  719.     register int count;
  720.     register int match;
  721.     register int ended;
  722.     register char *type_name;
  723.     extern char token_buffer[];
  724.  
  725.     /* offset is always 0 if parser has already popped the stack pointer */
  726.     if (semantic_parser)
  727.         stack_offset = 0;
  728.  
  729.     fprintf(fguard, "\ncase %d:\n", nrules);
  730.     fprintf(fguard, "#line %d \"%s\"\n", lineno, infile);
  731.     putc('{', fguard);
  732.  
  733.     count = 0;
  734.     c = getc(finput);
  735.  
  736.     while (count > 0 || c != ';' && c != '{') {
  737.         switch (c) {
  738.             case '\n':
  739.             putc((char) c, fguard);    /* WG */
  740.             lineno++;
  741.             break;
  742.  
  743.             case '{':
  744.             putc((char) c, fguard);    /* WG */
  745.             count++;
  746.             break;
  747.  
  748.             case '}':
  749.             putc((char) c, fguard);    /* WG */
  750.             if (count > 0)
  751.                 count--;
  752.             else
  753.                 fatal("unmatched right brace ('}')");
  754.  
  755.             case '\'':
  756.             case '"':
  757.             match = c;
  758.             putc((char) c, fguard);    /* WG */
  759.             c = getc(finput);
  760.  
  761.             while (c != match) {
  762.                 if (c == EOF || c == '\n')
  763.                     fatal("unterminated string");
  764.  
  765.                 putc((char) c, fguard);    /* WG */
  766.  
  767.                 if (c == '\\') {
  768.                     c = getc(finput);
  769.                     if (c == EOF || c == '\n')
  770.                         fatal("unterminated string");
  771.                     putc((char) c, fguard);    /* WG */
  772.                     if (c == '\n')
  773.                         lineno++;
  774.                     }
  775.  
  776.                 c = getc(finput);
  777.                 }
  778.  
  779.             putc((char) c, fguard);    /* WG */
  780.             break;
  781.  
  782.             case '/':
  783.             putc((char) c, fguard);    /* WG */
  784.             c = getc(finput);
  785.             if (c != '*')
  786.                 continue;
  787.  
  788.             putc((char) c, fguard);    /* WG */
  789.             c = getc(finput);
  790.  
  791.             ended = 0;
  792.             while (!ended) {
  793.                 if (c == '*') {
  794.                     while (c == '*') {
  795.                         putc((char) c, fguard);    /* WG */
  796.                         c = getc(finput);
  797.                         }
  798.  
  799.                     if (c == '/') {
  800.                         putc((char) c, fguard);    /* WG */
  801.                         ended = 1;
  802.                         }
  803.                     }
  804.                 else if (c == '\n') {
  805.                     lineno++;
  806.                     putc((char) c, fguard);    /* WG */
  807.                     c = getc(finput);
  808.                     }
  809.                 else if (c == EOF)
  810.                     fatal("unterminated comment");
  811.                 else {
  812.                     putc((char) c, fguard);    /* WG */
  813.                     c = getc(finput);
  814.                     }
  815.                 }
  816.  
  817.             break;
  818.  
  819.             case '$':
  820.             c = getc(finput);
  821.             type_name = NULL;
  822.  
  823.             if (c == '<') {
  824.                 register char *cp = token_buffer;
  825.  
  826.                 while ((c = getc(finput)) != '>' && c > 0)
  827.                     *cp++ = (char) c;    /* WG */
  828.                 *cp = 0;
  829.                 type_name = token_buffer;
  830.  
  831.                 c = getc(finput);
  832.                 }
  833.  
  834.             if (c == '$') {
  835.                 fprintf(fguard, "yyval");
  836.                 if (!type_name)
  837.                     type_name = rule->sym->type_name;
  838.                 if (type_name)
  839.                     fprintf(fguard, ".%s", type_name);
  840.                 if (!type_name && typed)    /* JF */
  841.                     fprintf(stderr, "%s:%d:  warning:  $$ of '%s' has no declared type.\n", infile, lineno, rule->sym->tag);
  842.                 }
  843.  
  844.             else if (isdigit(c) || c == '-') {
  845.                 register int sign = 1;
  846.  
  847.                 if (c == '-') {
  848.                     c = getc(finput);
  849.                     sign = -1;
  850.                     }
  851.                 n = 0;
  852.                 while (isdigit(c)) {
  853.                     n = 10 * n + (c - '0');
  854.                     c = getc(finput);
  855.                     }
  856.  
  857.                 n *= sign;
  858.  
  859.                 if (!type_name && n > 0)
  860.                     type_name = get_type_name(n, rule);
  861.  
  862.                 fprintf(fguard, "yyvsp[%d]", n - stack_offset);
  863.                 if (type_name)
  864.                     fprintf(fguard, ".%s", type_name);
  865.                 if (!type_name && typed)    /* JF */
  866.                     fprintf(stderr, "%s:%d: warning:  $%d of '%s' has no declared type.\n", infile, lineno, n, rule->sym->tag);
  867.                 continue;
  868.                 }
  869.             else
  870.                 fatals("$%c is illegal", c);    /* JF changed style */
  871.  
  872.             break;
  873.  
  874.             case '@':
  875.             c = getc(finput);
  876.             n = 0;
  877.             while (isdigit(c)) {
  878.                 n = 10 * n + (c - '0');
  879.                 c = getc(finput);
  880.                 }
  881.  
  882.             if (n < 1)
  883.                 fatal("illegal @-construct");
  884.  
  885.             fprintf(fguard, "yylsp[%d]", n - stack_offset);
  886.  
  887.             continue;
  888.  
  889.             case EOF:
  890.             fatal("unterminated %guard clause");
  891.  
  892.             default:
  893.             putc((char) c, fguard);    /* WG */
  894.             }
  895.  
  896.         c = getc(finput);
  897.         }
  898.  
  899.     fprintf(fguard, ";\n    break;}");
  900.     if (c == '{')
  901.         copy_action(rule, stack_offset);
  902.     else if (c == '=') {
  903.         c = getc(finput);
  904.         if (c = '{')
  905.             copy_action(rule, stack_offset);
  906.         }
  907.  
  908.     }
  909.  
  910.  
  911.  
  912. /* Assuming that a { has just been seen, copy everything up to the matching }
  913. into the actions file.
  914. stack_offset is the number of values in the current rule so far,
  915. which says where to find $0 with respect to the top of the stack.  */
  916.  
  917. void 
  918. copy_action(rule, stack_offset)    /* WG */
  919.     symbol_list *rule;
  920.     int stack_offset;
  921. {
  922.     register int c;
  923.     register int n;
  924.     register int count;
  925.     register int match;
  926.     register int ended;
  927.     register char *type_name;
  928.     extern char token_buffer[];
  929.  
  930.     /* offset is always 0 if parser has already popped the stack pointer */
  931.     if (semantic_parser)
  932.         stack_offset = 0;
  933.  
  934.     fprintf(faction, "\ncase %d:\n", nrules);
  935.     fprintf(faction, "#line %d \"%s\"\n", lineno, infile);
  936.     putc('{', faction);
  937.  
  938.     count = 1;
  939.     c = getc(finput);
  940.  
  941.     while (count > 0) {
  942.         while (c != '}') {
  943.             switch (c) {
  944.                 case '\n':
  945.                 putc((char) c, faction);    /* WG */
  946.                 lineno++;
  947.                 break;
  948.  
  949.                 case '{':
  950.                 putc((char) c, faction);    /* WG */
  951.                 count++;
  952.                 break;
  953.  
  954.                 case '\'':
  955.                 case '"':
  956.                 match = c;
  957.                 putc((char) c, faction);    /* WG */
  958.                 c = getc(finput);
  959.  
  960.                 while (c != match) {
  961.                     if (c == EOF || c == '\n')
  962.                         fatal("unterminated string");
  963.  
  964.                     putc((char) c, faction);    /* WG */
  965.  
  966.                     if (c == '\\') {
  967.                         c = getc(finput);
  968.                         if (c == EOF)
  969.                             fatal("unterminated string");
  970.                         putc((char) c, faction);    /* WG */
  971.                         if (c == '\n')
  972.                             lineno++;
  973.                         }
  974.  
  975.                     c = getc(finput);
  976.                     }
  977.  
  978.                 putc((char) c, faction);    /* WG */
  979.                 break;
  980.  
  981.                 case '/':
  982.                 putc((char) c, faction);    /* WG */
  983.                 c = getc(finput);
  984.                 if (c != '*')
  985.                     continue;
  986.  
  987.                 putc((char) c, faction);    /* WG */
  988.                 c = getc(finput);
  989.  
  990.                 ended = 0;
  991.                 while (!ended) {
  992.                     if (c == '*') {
  993.                         while (c == '*') {
  994.                             putc((char) c, faction);    /* WG */
  995.                             c = getc(finput);
  996.                             }
  997.  
  998.                         if (c == '/') {
  999.                             putc((char) c, faction);    /* WG */
  1000.                             ended = 1;
  1001.                             }
  1002.                         }
  1003.                     else if (c == '\n') {
  1004.                         lineno++;
  1005.                         putc((char) c, faction);    /* WG */
  1006.                         c = getc(finput);
  1007.                         }
  1008.                     else if (c == EOF)
  1009.                         fatal("unterminated comment");
  1010.                     else {
  1011.                         putc((char) c, faction);    /* WG */
  1012.                         c = getc(finput);
  1013.                         }
  1014.                     }
  1015.  
  1016.                 break;
  1017.  
  1018.                 case '$':
  1019.                 c = getc(finput);
  1020.                 type_name = NULL;
  1021.  
  1022.                 if (c == '<') {
  1023.                     register char *cp = token_buffer;
  1024.  
  1025.                     while ((c = getc(finput)) != '>' && c > 0)
  1026.                         *cp++ = (char) c;    /* WG */
  1027.                     *cp = 0;
  1028.                     type_name = token_buffer;
  1029.  
  1030.                     c = getc(finput);
  1031.                     }
  1032.                 if (c == '$') {
  1033.                     fprintf(faction, "yyval");
  1034.                     if (!type_name)
  1035.                         type_name = get_type_name(0, rule);
  1036.                     if (type_name)
  1037.                         fprintf(faction, ".%s", type_name);
  1038.                     if (!type_name && typed)    /* JF */
  1039.                         fprintf(stderr, "%s:%d:  warning:  $$ of '%s' has no declared type.\n", infile, lineno, rule->sym->tag);
  1040.                     }
  1041.                 else if (isdigit(c) || c == '-') {
  1042.                     register int sign = 1;
  1043.  
  1044.                     if (c == '-') {
  1045.                         c = getc(finput);
  1046.                         sign = -1;
  1047.                         }
  1048.                     n = 0;
  1049.                     while (isdigit(c)) {
  1050.                         n = 10 * n + (c - '0');
  1051.                         c = getc(finput);
  1052.                         }
  1053.                     n *= sign;
  1054.                     if (!type_name && n > 0)
  1055.                         type_name = get_type_name(n, rule);
  1056.  
  1057.                     fprintf(faction, "yyvsp[%d]", n - stack_offset);
  1058.                     if (type_name)
  1059.                         fprintf(faction, ".%s", type_name);
  1060.                     if (!type_name && typed)    /* JF */
  1061.                         fprintf(stderr, "%s:%d: warning:  $%d of '%s' has no declared type.\n", infile, lineno, n, rule->sym->tag);
  1062.                     continue;
  1063.                     }
  1064.                 else
  1065.                     fatals("$%c is illegal", c);    /* JF changed format *//* W
  1066.                                      * G */
  1067.  
  1068.                 break;
  1069.  
  1070.                 case '@':
  1071.                 c = getc(finput);
  1072.                 n = 0;
  1073.  
  1074.                 while (isdigit(c)) {
  1075.                     n = 10 * n + (c - '0');
  1076.                     c = getc(finput);
  1077.                     }
  1078.  
  1079.                 if (n < 1)
  1080.                     fatal("illegal @-construct");
  1081.  
  1082.                 fprintf(faction, "yylsp[%d]", n - stack_offset);
  1083.  
  1084.                 continue;
  1085.  
  1086.                 case EOF:
  1087.                 fatal("unmatched '{'");
  1088.  
  1089.                 default:
  1090.                 putc((char) c, faction);    /* WG */
  1091.                 }
  1092.  
  1093.             c = getc(finput);
  1094.             }
  1095.  
  1096.         /* above loop exits when c is '}' */
  1097.  
  1098.         if (--count) {
  1099.             putc((char) c, faction);    /* WG */
  1100.             c = getc(finput);
  1101.             }
  1102.         }
  1103.  
  1104.     fprintf(faction, ";\n    break;}");
  1105.     }
  1106.  
  1107.  
  1108.  
  1109. /* generate a dummy symbol, a nonterminal,
  1110. whose name cannot conflict with the user's names. */
  1111.  
  1112. bucket *
  1113. gensym()
  1114. {
  1115.     register bucket *sym;
  1116.  
  1117.     extern char token_buffer[];
  1118.  
  1119.     sprintf(token_buffer, "@%d", ++gensym_count);
  1120.     sym = getsym(token_buffer);
  1121.     sym->class = SNTERM;
  1122.     sym->value = nvars++;
  1123.     return (sym);
  1124.     }
  1125.  
  1126.  
  1127.  
  1128. /* Parse the input grammar into a one symbol_list structure.
  1129. Each rule is represented by a sequence of symbols: the left hand side
  1130. followed by the contents of the right hand side, followed by a null pointer
  1131. instead of a symbol to terminate the rule.
  1132. The next symbol is the lhs of the following rule.
  1133.   
  1134. All guards and actions are copied out to the appropriate files,
  1135. labelled by the rule number they apply to.  */
  1136.  
  1137. void 
  1138. readgram()
  1139. {                /* WG */
  1140.     register int t;
  1141.     register bucket *lhs;
  1142.     register symbol_list *p;
  1143.     register symbol_list *p1;
  1144.  
  1145.     symbol_list *crule;    /* points to first symbol_list of current
  1146.                  * rule.  */
  1147.  
  1148.     /* its symbol is the lhs of the rule.   */
  1149.     symbol_list *crule1;    /* points to the symbol_list preceding crule.  */
  1150.  
  1151.     p1 = NULL;
  1152.  
  1153.     t = lex();
  1154.  
  1155.     while (t != TWO_PERCENTS && t != ENDFILE) {
  1156.         if (t == IDENTIFIER || t == BAR) {
  1157.             register int actionflag = 0;
  1158.             int rulelength = 0;    /* number of symbols in rhs
  1159.                          * of this rule so far  */
  1160.             int xactions = 0;    /* JF for error checking */
  1161.             bucket *first_rhs = 0;
  1162.  
  1163.             if (t == IDENTIFIER) {
  1164.                 lhs = symval;
  1165.  
  1166.                 t = lex();
  1167.                 if (t != COLON)
  1168.                     fatal("ill-formed rule");
  1169.                 }
  1170.  
  1171.             if (nrules == 0) {
  1172.                 if (t == BAR)
  1173.                     fatal("grammar starts with vertical bar");
  1174.  
  1175.                 if (!start_flag)
  1176.                     startval = lhs;
  1177.                 }
  1178.  
  1179.             /* start a new rule and record its lhs.  */
  1180.  
  1181.             nrules++;
  1182.             nitems++;
  1183.  
  1184.             record_rule_line();
  1185.  
  1186.             p = NEW(symbol_list);
  1187.             p->sym = lhs;
  1188.  
  1189.             crule1 = p1;
  1190.             if (p1)
  1191.                 p1->next = p;
  1192.             else
  1193.                 grammar = p;
  1194.  
  1195.             p1 = p;
  1196.             crule = p;
  1197.  
  1198.             /*
  1199.              * mark the rule's lhs as a nonterminal if not
  1200.              * already so.  
  1201.              */
  1202.  
  1203.             if (lhs->class == SUNKNOWN) {
  1204.                 lhs->class = SNTERM;
  1205.                 lhs->value = nvars;
  1206.                 nvars++;
  1207.                 }
  1208.             else if (lhs->class == STOKEN)
  1209.                 fatals("rule given for %s, which is a token", lhs->tag);
  1210.  
  1211.             /* read the rhs of the rule.  */
  1212.  
  1213.             for (;;) {
  1214.                 t = lex();
  1215.  
  1216.                 if (!(t == IDENTIFIER || t == LEFT_CURLY))
  1217.                     break;
  1218.  
  1219.                 /*
  1220.                  * if next token is an identifier, see if a
  1221.                  * colon follows it. If one does, exit this
  1222.                  * rule now.  
  1223.                  */
  1224.                 if (t == IDENTIFIER) {
  1225.                     register bucket *ssave;
  1226.                     register int t1;
  1227.  
  1228.                     ssave = symval;
  1229.                     t1 = lex();
  1230.                     unlex(t1);
  1231.                     symval = ssave;
  1232.                     if (t1 == COLON)
  1233.                         break;
  1234.  
  1235.                     if (!first_rhs)    /* JF */
  1236.                         first_rhs = symval;
  1237.                     /*
  1238.                      * not followed by colon => process
  1239.                      * as part of this rule's rhs.  
  1240.                      */
  1241.                     if (actionflag) {
  1242.                         register bucket *sdummy;
  1243.  
  1244.                         /*
  1245.                          * if this symbol was
  1246.                          * preceded by an action, 
  1247.                          */
  1248.                         /*
  1249.                          * make a dummy nonterminal
  1250.                          * to replace that action in
  1251.                          * this rule 
  1252.                          */
  1253.                         /*
  1254.                          * and make another rule to
  1255.                          * associate the action to
  1256.                          * the dummy.  
  1257.                          */
  1258.                         /*
  1259.                          * Since the action was
  1260.                          * written out with this
  1261.                          * rule's number, 
  1262.                          */
  1263.                         /*
  1264.                          * we must write give the new
  1265.                          * rule this number 
  1266.                          */
  1267.                         /*
  1268.                          * by inserting the new rule
  1269.                          * before it.  
  1270.                          */
  1271.  
  1272.                         /*
  1273.                          * make a dummy nonterminal,
  1274.                          * a gensym.  
  1275.                          */
  1276.                         sdummy = gensym();
  1277.  
  1278.                         /*
  1279.                          * make a new rule, whose
  1280.                          * body is empty, before the
  1281.                          * current one.  
  1282.                          */
  1283.                         /*
  1284.                          * so that the action just
  1285.                          * read can belong to it.  
  1286.                          */
  1287.                         nrules++;
  1288.                         nitems++;
  1289.                         record_rule_line();
  1290.                         p = NEW(symbol_list);
  1291.                         if (crule1)
  1292.                             crule1->next = p;
  1293.                         else
  1294.                             grammar = p;
  1295.                         p->sym = sdummy;
  1296.                         crule1 = NEW(symbol_list);
  1297.                         p->next = crule1;
  1298.                         crule1->next = crule;
  1299.  
  1300.                         /*
  1301.                          * insert the dummy generated
  1302.                          * by that rule into this
  1303.                          * rule.  
  1304.                          */
  1305.                         nitems++;
  1306.                         p = NEW(symbol_list);
  1307.                         p->sym = sdummy;
  1308.                         p1->next = p;
  1309.                         p1 = p;
  1310.  
  1311.                         actionflag = 0;
  1312.                         }
  1313.                     nitems++;
  1314.                     p = NEW(symbol_list);
  1315.                     p->sym = symval;
  1316.                     p1->next = p;
  1317.                     p1 = p;
  1318.                     }
  1319.                 else {    /* handle an action.  */
  1320.                     copy_action(crule, rulelength);
  1321.                     actionflag = 1;
  1322.                     xactions++;    /* JF */
  1323.                     }
  1324.                 rulelength++;
  1325.                 }
  1326.  
  1327.             /*
  1328.              * Put an empty link in the list to mark the end of
  1329.              * this rule  
  1330.              */
  1331.             p = NEW(symbol_list);
  1332.             p1->next = p;
  1333.             p1 = p;
  1334.  
  1335.             if (t == PREC) {
  1336.                 t = lex();
  1337.                 crule->ruleprec = symval;
  1338.                 t = lex();
  1339.                 }
  1340.             if (t == GUARD) {
  1341.                 if (!semantic_parser)
  1342.                     fatal("%guard present but %semantic_parser not specified");
  1343.  
  1344.                 copy_guard(crule, rulelength);
  1345.                 t = lex();
  1346.                 }
  1347.             else if (t == LEFT_CURLY) {
  1348.                 if (actionflag)
  1349.                     fatal("two actions at end of one rule");
  1350.                 copy_action(crule, rulelength);
  1351.                 t = lex();
  1352.                 }
  1353.             /* JF if we'd end up using default, get a warning */
  1354.             else if (!xactions && first_rhs && lhs->type_name != first_rhs->type_name) {
  1355.                 if (lhs->type_name == 0 || first_rhs->type_name == 0 ||
  1356.                 strcmp(lhs->type_name, first_rhs->type_name))
  1357.                     fprintf(stderr, "%s:%d:  warning: type clash ('%s' '%s') on default action\n",
  1358.                         infile, lineno, lhs->type_name, first_rhs->type_name);
  1359.                 }
  1360.             if (t == SEMICOLON)
  1361.                 t = lex();
  1362.             }
  1363.         /* these things can appear as alternatives to rules.  */
  1364.         else if (t == TOKEN) {
  1365.             parse_token_decl(STOKEN, SNTERM);
  1366.             t = lex();
  1367.             }
  1368.         else if (t == NTERM) {
  1369.             parse_token_decl(SNTERM, STOKEN);
  1370.             t = lex();
  1371.             }
  1372.         else if (t == TYPE) {
  1373.             t = get_type();
  1374.             }
  1375.         else if (t == UNION) {
  1376.             parse_union_decl();
  1377.             t = lex();
  1378.             }
  1379.         else if (t == START) {
  1380.             parse_start_decl();
  1381.             t = lex();
  1382.             }
  1383.         else
  1384.             fatal("illegal input");
  1385.         }
  1386.  
  1387.     if (nrules == 0)
  1388.         fatal("no input grammar");
  1389.  
  1390.     if (typed == 0)        /* JF put out same default YYSTYPE as YACC
  1391.                  * does */
  1392.         fprintf(fattrs1, "#ifndef YYSTYPE\n#define YYSTYPE int\n#endif\n");
  1393.  
  1394.     ntokens = nsyms - nvars;
  1395.     }
  1396.  
  1397.  
  1398. void 
  1399. record_rule_line()
  1400. {                /* WG */
  1401.     /* Record each rule's source line number in rline table.  */
  1402.  
  1403.     if (nrules >= rline_allocated) {
  1404.         rline_allocated = nrules * 2;
  1405.         rline = (short *) realloc((char *) rline,    /* WG */
  1406.                       rline_allocated * sizeof(short));
  1407.         if (rline == 0) {
  1408.             fprintf(stderr, "bison: memory exhausted\n");
  1409.             exit(1);
  1410.             }
  1411.         }
  1412.     rline[nrules] = lineno;
  1413.     }
  1414.  
  1415.  
  1416. /* read in a %type declaration and record its information for get_type_name to access */
  1417.  
  1418. int
  1419. get_type()
  1420. {
  1421.     register int k;
  1422.     register int t;
  1423.     register char *name;
  1424.  
  1425.     extern char token_buffer[];
  1426.  
  1427.     t = lex();
  1428.  
  1429.     if (t != TYPENAME)
  1430.         fatal("ill-formed %type declaration");
  1431.  
  1432.     k = strlen(token_buffer);
  1433.     name = NEW2(k + 1, char);
  1434.     strcpy(name, token_buffer);
  1435.  
  1436.     for (;;) {
  1437.         t = lex();
  1438.  
  1439.         switch (t) {
  1440.             case SEMICOLON:
  1441.             return (lex());
  1442.  
  1443.             case COMMA:
  1444.             break;
  1445.  
  1446.             case IDENTIFIER:
  1447.             if (symval->type_name == NULL)
  1448.                 symval->type_name = name;
  1449.             else
  1450.                 fatals("type redeclaration for %s", symval->tag);
  1451.  
  1452.             break;
  1453.  
  1454.             default:
  1455.             return (t);
  1456.             }
  1457.         }
  1458.     }
  1459.  
  1460.  
  1461.  
  1462. /* assign symbol numbers, and write definition of token names into fdefines.
  1463. Set up vectors tags and sprec of names and precedences of symbols.  */
  1464.  
  1465. void 
  1466. packsymbols()
  1467. {                /* WG */
  1468.     register bucket *bp;
  1469.     register int tokno = 1;
  1470.     register int i;
  1471.     register int last_user_token_number;
  1472.  
  1473.     /* int lossage = 0; JF set but not used */
  1474.  
  1475.     tags = NEW2(nsyms + 1, char *);
  1476.     tags[0] = "$";
  1477.  
  1478.     sprec = NEW2(nsyms, short);
  1479.     sassoc = NEW2(nsyms, short);
  1480.  
  1481.     max_user_token_number = 255;
  1482.     last_user_token_number = 255;
  1483.  
  1484.     for (bp = firstsymbol; bp; bp = bp->next) {
  1485.         if (bp->class == SUNKNOWN) {
  1486.             fprintf(stderr, "symbol %s used, not defined as token, and no rules for it\n",
  1487.                 bp->tag);
  1488.             /* lossage = 1; JF not used */
  1489.             bp->class = SNTERM;
  1490.             }
  1491.  
  1492.         if (bp->class == SNTERM) {
  1493.             bp->value += ntokens;
  1494.             }
  1495.         else {
  1496.             if (translations && !(bp->user_token_number))
  1497.                 bp->user_token_number = ++last_user_token_number;
  1498.             if (bp->user_token_number > max_user_token_number)
  1499.                 max_user_token_number = bp->user_token_number;
  1500.             bp->value = tokno++;
  1501.             }
  1502.  
  1503.         tags[bp->value] = bp->tag;
  1504.         sprec[bp->value] = bp->prec;
  1505.         sassoc[bp->value] = bp->assoc;
  1506.  
  1507.         }
  1508.  
  1509.     if (translations) {
  1510.         register int i;
  1511.  
  1512.         token_translations = NEW2(max_user_token_number + 1, short);
  1513.  
  1514.         /*
  1515.          * initialize all entries for literal tokens to 2, the
  1516.          * internal token number for $illegal., which represents all
  1517.          * illegal inputs.  
  1518.          */
  1519.         for (i = 0; i <= max_user_token_number; i++)
  1520.             token_translations[i] = 2;
  1521.         }
  1522.  
  1523.     for (bp = firstsymbol; bp; bp = bp->next) {
  1524.         if (bp->value >= ntokens)
  1525.             continue;
  1526.         if (translations) {
  1527.             if (token_translations[bp->user_token_number] != 2) {
  1528.                 /* JF made this a call to fatals() */
  1529.                 fatals("tokens %s and %s both assigned number %d",
  1530.                        tags[token_translations[bp->user_token_number]],
  1531.                        bp->tag,
  1532.                        bp->user_token_number);
  1533.                 }
  1534.             token_translations[bp->user_token_number] = bp->value;
  1535.             }
  1536.         }
  1537.  
  1538.     error_token_number = errtoken->value;
  1539.  
  1540.     output_token_defines(ftable);
  1541.  
  1542.     if (startval->class == SUNKNOWN)
  1543.         fatals("the start symbol %s is undefined", startval->tag);
  1544.     else if (startval->class == STOKEN)
  1545.         fatals("the start symbol %s is a token", startval->tag);
  1546.  
  1547.     start_symbol = startval->value;
  1548.  
  1549.     if (definesflag) {
  1550.         output_token_defines(fdefines);
  1551.  
  1552.         if (semantic_parser)
  1553.             for (i = ntokens; i < nsyms; i++) {
  1554.                 /*
  1555.                  * don't make these for dummy nonterminals
  1556.                  * made by gensym.  
  1557.                  */
  1558.                 if (*tags[i] != '@')
  1559.                     fprintf(fdefines, "#define\tNT%s\t%d\n", tags[i], i);
  1560.                 }
  1561.  
  1562.         fclose(fdefines);
  1563.         fdefines = NULL;
  1564.         }
  1565.     }
  1566.  
  1567.  
  1568. void 
  1569. output_token_defines(file)    /* WG */
  1570.     FILE *file;
  1571. {
  1572.     bucket *bp;
  1573.  
  1574.     for (bp = firstsymbol; bp; bp = bp->next) {
  1575.         if (bp->value >= ntokens)
  1576.             continue;
  1577.  
  1578.         /* For named tokens, but not literal ones, define the name.  */
  1579.         /* The value is the user token number.  */
  1580.  
  1581.         if ('\'' != *tags[bp->value] && bp != errtoken) {
  1582.             register char *cp = tags[bp->value];
  1583.             register char c;
  1584.  
  1585.             /*
  1586.              * Don't #define nonliteral tokens whose names
  1587.              * contain periods.  
  1588.              */
  1589.  
  1590.             while ((c = *cp++) && c != '.');
  1591.             if (!c) {
  1592.                 fprintf(file, "#define\t%s\t%d\n", tags[bp->value],
  1593.                     (translations ? bp->user_token_number : bp->value));
  1594.                 if (semantic_parser)
  1595.                     fprintf(file, "#define\tT%s\t%d\n", tags[bp->value],
  1596.                         bp->value);
  1597.                 }
  1598.             }
  1599.         }
  1600.  
  1601.     putc('\n', file);
  1602.     }
  1603.  
  1604.  
  1605.  
  1606. /* convert the rules into the representation using rrhs, rlhs and ritems.  */
  1607.  
  1608. void 
  1609. packgram()
  1610. {                /* WG */
  1611.     register int itemno;
  1612.     register int ruleno;
  1613.     register symbol_list *p;
  1614.  
  1615. /*  register bucket *bp; JF unused */
  1616.  
  1617.     bucket *ruleprec;
  1618.  
  1619.     ritem = NEW2(nitems + 1, short);
  1620.     rlhs = NEW2(nrules, short) -1;
  1621.     rrhs = NEW2(nrules, short) -1;
  1622.     rprec = NEW2(nrules, short) -1;
  1623.     rassoc = NEW2(nrules, short) -1;
  1624.  
  1625.     itemno = 0;
  1626.     ruleno = 1;
  1627.  
  1628.     p = grammar;
  1629.     while (p) {
  1630.         rlhs[ruleno] = p->sym->value;
  1631.         rrhs[ruleno] = itemno;
  1632.         ruleprec = p->ruleprec;
  1633.  
  1634.         p = p->next;
  1635.         while (p && p->sym) {
  1636.             ritem[itemno++] = p->sym->value;
  1637.             /*
  1638.              * a rule gets the precedence and associativity of
  1639.              * the last token in it.  
  1640.              */
  1641.             if (p->sym->class == STOKEN) {
  1642.                 rprec[ruleno] = p->sym->prec;
  1643.                 rassoc[ruleno] = p->sym->assoc;
  1644.                 }
  1645.             if (p)
  1646.                 p = p->next;
  1647.             }
  1648.  
  1649.         /*
  1650.          * if this rule has a %prec, specified symbol's precedence
  1651.          * replaces the default 
  1652.          */
  1653.         if (ruleprec) {
  1654.             rprec[ruleno] = ruleprec->prec;
  1655.             rassoc[ruleno] = ruleprec->assoc;
  1656.             }
  1657.  
  1658.         ritem[itemno++] = -ruleno;
  1659.         ruleno++;
  1660.  
  1661.         if (p)
  1662.             p = p->next;
  1663.         }
  1664.  
  1665.     ritem[itemno] = 0;
  1666.     }
  1667.